|
steven
|
 |
« on: September 12, 2008, 09:39:47 PM » |
|
If you choose other, please post your proposal here
|
|
|
|
« Last Edit: October 30, 2008, 01:41:35 AM by steven »
|
Logged
|
Sigma AJAX Data Grid - Easy to Integrate with PHP, ASP Classic, ASP.NET & Java Sigma PHP Ajax Framework - WYSIWYG GUI Builder With Tree, Grid, Treegrid, Dialog, Tab & More Component
|
|
|
|
Danielrve
|
 |
« Reply #1 on: December 03, 2008, 03:15:32 AM » |
|
Hi Everyone!
Well I think that one function will be a "Calculate Cols" when I put in a value of the col example: the id of the customer and in other cols show me the customer name or customer email, that is calculate the value of a col with value of other cols
And controls in the grid, like the calendar control that show me a button calendar, but I wish to use for other propose, like list, dialog, etc.
I hope you understand me is a very functional that
Best Regarts
Daniel Rivas CYBERIA SOFTWARE, Inc
|
|
|
|
|
Logged
|
|
|
|
|
steven
|
 |
« Reply #2 on: December 03, 2008, 09:09:31 PM » |
|
I am not sure if your first point is Formular Cells. If yes, here is a sample for your ref. http://www.sigmawidgets.com/products/sigma_grid2/demos/example_formular.htmlAnd for the second point, we will think of that. It may appear in the next version. :0
|
|
|
|
|
Logged
|
Sigma AJAX Data Grid - Easy to Integrate with PHP, ASP Classic, ASP.NET & Java Sigma PHP Ajax Framework - WYSIWYG GUI Builder With Tree, Grid, Treegrid, Dialog, Tab & More Component
|
|
|
|
Danielrve
|
 |
« Reply #3 on: December 04, 2008, 04:29:42 AM » |
|
Hi Steve How are you???
A footer is a Great Idea too!!! 'cause in a footer will can put totality for every col, something like that!!!!
|
|
|
|
|
Logged
|
|
|
|
|
Darshan
|
 |
« Reply #4 on: December 19, 2008, 09:55:25 PM » |
|
Hello Friends, 1. I want to check aggregation value of my 1 row in sigma grid. Can any one help me how to do this? This is possible in sigma grid 1.7 but not in 2.0. http://www.sigmawidgets.com/products/sigma_grid/demos/example_aggregate.html on this link it is working for 1.7 but can any one help me how to sort out this thing in 2.0 2. I want to do right align of only 1 column as my requirement. when i change from css then all columns are in right align. Please help me how to align particular column in right.. Thanks in advance...................
|
|
|
|
|
Logged
|
|
|
|
|
|
|
humi
|
 |
« Reply #6 on: January 20, 2009, 05:52:05 AM » |
|
A feature important for many different reasons.
Be able to read a value a user has input before it has been saved.
IE. i want to create custom dialog to be dynamic to a column in the same row, ie selected from a drop down.
|
|
|
|
|
Logged
|
|
|
|
|
steven
|
 |
« Reply #7 on: January 20, 2009, 05:37:21 PM » |
|
A feature important for many different reasons.
Be able to read a value a user has input before it has been saved.
IE. i want to create custom dialog to be dynamic to a column in the same row, ie selected from a drop down.
I will propose this one.
|
|
|
|
|
Logged
|
Sigma AJAX Data Grid - Easy to Integrate with PHP, ASP Classic, ASP.NET & Java Sigma PHP Ajax Framework - WYSIWYG GUI Builder With Tree, Grid, Treegrid, Dialog, Tab & More Component
|
|
|
ecordero
Newbie

Posts: 4
|
 |
« Reply #8 on: February 05, 2009, 03:17:48 PM » |
|
Unique selection (with radiobox) ...
|
|
|
|
|
Logged
|
|
|
|
|
shumisha
|
 |
« Reply #9 on: March 01, 2009, 10:25:03 AM » |
|
Hi all,
I am new to Sigmagrid, and have been struggling a bit to achieve what I needed. Maybe I just missed how to do it and it is actually very easy ? Currently, one can easily sum some values from the same row (horizontal operation), using an initValue function in the dsOption variable. However, I have not found an easy way to do "vertical" operations (in some places called aggregation). I would very much like to be able to perform some custom operations on a column, just like it is now possible to do on a row.
Thanks and best regards
|
|
|
|
|
Logged
|
|
|
|
|
Darshan
|
 |
« Reply #10 on: March 01, 2009, 10:10:44 PM » |
|
HI,
for sum of row(vertically you can follow below code:
var __TEST_DATA__; var t4,t5,t6,t7; var a4,a5,a6,a7; var total4 = 0, total5 = 0,total6 = 0,total7 = 0, i=0;
t4 = document.getElementById('f_05').value; t5 = document.getElementById('f_06').value; t6 = document.getElementById('f_07').value; t7 = document.getElementById('f_08').value;
for(i=0; i<__TEST_DATA__.length; i++) { total4 = total4 + __TEST_DATA__[4]; total5 = total5 + __TEST_DATA__[5]; // same for total6 and total7 }
__TEST_DATA__.push(["Total","","","",total4,total5,total6,total7,""]);
You get your sum value here at last row. It shows total sum of total4, total5....
|
|
|
|
|
Logged
|
|
|
|
|
shumisha
|
 |
« Reply #11 on: March 01, 2009, 11:55:01 PM » |
|
Hi Darshan,
Thanks for your answer. Maybe another thread is more appropriate for this discussion ? Anyway, what I meant was a dynamic vertically sum. ie : user types a number, and the total at the bottom of the page is updated. I'll post the code I used, but it is pretty complicated I find (and possibly slow) so I had hoped there was a simpler solution
Rgds
|
|
|
|
|
Logged
|
|
|
|
|
Darshan
|
 |
« Reply #12 on: March 02, 2009, 12:24:56 AM » |
|
yes the above solution is very simple and right now i use this things in my project also. You can also check it, working nicely....
|
|
|
|
|
Logged
|
|
|
|
|
shumisha
|
 |
« Reply #13 on: March 02, 2009, 12:48:53 AM » |
|
Hi Darshan,
As far as I understand, the above solution does not work for dynamic entry. You enter the vertical sums in the __TEST_DATA variable, which is used at the beginning. I want sums to be updated when user types a new value in a cell (just like you use initValue function for horizontal sums)
Rgds
|
|
|
|
|
Logged
|
|
|
|
|
Darshan
|
 |
« Reply #14 on: March 02, 2009, 01:04:36 AM » |
|
yes you can do it threw this way. Flow of this thing is work as:
first it count total of particular row and then it push as a new row in last which shows total sum. If you can write this code in afterEdit then it will change when you change paricular cell's value. Its working for me. You can try properly, Sure its working...
|
|
|
|
|
Logged
|
|
|
|
|