| Sigma Php Ajax framework, Ajax Components, GUI Builder |
|
July 30, 2010, 09:25:31 AM
|
|||
|
|||
| News: |
| Home | Help | Search | Login | Register |
|
1
on: Today at 09:02:04 AM
|
||
| Started by ciungulete - Last post by ciungulete | ||
|
I try, i need to update data in mysql table when press save. At my table when press save return old values, nothing changed
|
||
|
2
Sigma Visual GUI Builder & Library / Bug Report & Wishlist / GetValue for Combobox type datepicker fails
on: Today at 07:45:02 AM
|
||
| Started by ludwigl - Last post by ludwigl | ||
|
Hello,
please correct in CompoInput.js (R899) line 10 the call "._isFinite" to "isFinite". >C:\xampp\php\sigma-visual-builder2.2\runtime\jsLinb\js\UI\ComboInput.js (2 hits) > Line 10: v=_.isDate(v)?v:_.isFinite(v)?new Date(parseInt(v)):null; The current implementation causes getValue and getUIValue for comboboxes of type datepicker to fail. Thank you, Ludwig |
||
|
3
Sigma Visual GUI Builder & Library / Bug Report & Wishlist / Display problem of treegrid group rows (V2.2 R901) in IE8
on: Today at 06:05:53 AM
|
||
| Started by ludwigl - Last post by ludwigl | ||
|
Hello,
the display of the caption of a group row in a treegrid does not work in InternetExplorer 8 (works fine in Firefox 3.6.8). Please see the attached pictures and/or run the example in IE: append((new linb.UI.TreeGrid) .host(host,"treegrid2") .setDock("none") .setTop(100) .setHeight(100) .setHeader([{"id":"col1", "width":80, "type":"input", "caption":"col1"}, {"id":"col2", "width":80, "type":"label", "caption":"col2"}, {"id":"col3", "width":80, "type":"label", "caption":"col3"}]) .setRows([{"id":"a", "caption":"01234567890123456789", "group":true, "cells":null}]) ); Is it possible to fix this? With best regards, Ludwig |
||
|
4
on: July 29, 2010, 11:58:49 PM
|
||
| Started by banmidou - Last post by jovibals | ||
|
check your library. maybe its incorrect path
|
||
|
5
on: July 29, 2010, 11:52:37 PM
|
||
| Started by Gideon - Last post by jovibals | ||
|
there's a demo folder you can see how this works.
|
||
|
6
on: July 29, 2010, 01:12:55 PM
|
||
| Started by ciungulete - Last post by OKL | ||
|
try this:
var mygrid = Sigma.$grid("gridid"); var jsUpdatedRows = grid.getUpdatedRecords(); |
||
|
7
on: July 29, 2010, 07:15:20 AM
|
||
| Started by OKL - Last post by OKL | ||
|
in grid options add this handler:
saveResponseHandler: function(response, requestParameter) { var jsonSaveResponse = GetNodeValue(response.text, 'string'); //this transforms WS response from xml to json string. response.text = jsonSaveResponse; return true; } Where GetNodeValue is a function that parses xml and extracts 'string' node. |
||
|
8
Sigma Grid / Sigma Grid - Q&A / Re: Is there a way to tie checkbox column to data object, the grid is build on?
on: July 29, 2010, 07:10:37 AM
|
||
| Started by OKL - Last post by OKL | ||
|
it's already tied to the first column in data array.
to get it call grid.checkedRows property. |
||
|
9
Sigma Grid / Sigma Grid - Q&A / On Load, I want to set checked some checkboxes based on data in record.
on: July 28, 2010, 02:00:01 PM
|
||
| Started by OKL - Last post by OKL | ||
|
On Load, I want to set checked some checkboxes based on data in record.
This is the case when you created a special column like this: {id: 'chk', isCheckColumn: true} I need some of the boxes to be checked on initial load based on some value in the same record/row. It's not only for the current page displayed, it has to be set for all that came in dataset. As a final goal, I want to call: grid.checkedRows and have an object returned properly right after Load is completed(no paging is done). Any suggestions? Perfectly, would use some other event and set checked for all records.(may be by iterating through all checked values) Thanks, OKL |
||
|
10
on: July 28, 2010, 12:21:37 PM
|
||
| Started by Donatello - Last post by OKL | ||
|
use grid.checkedRows property.
|
||