-
My guess this is in a callback grid. There is currently an issue with the combobox, which is that the Grid isn't re-initializing these combos. One thing to do would be on Callback Complete client event, initiailze the combobox. < script > function Grid1_onCallbackComplete(sender, e) { ComboBox1.Initialize(); ComboBox1.Initialize(); } </ script > ...this is correct, we initialize twice... < componentart : Grid ... > < ClientEvents > < callbackcomplete eventhandler =...
-
You can manipulate the Grid's Items collection directly, as outlined in ComponentArt Grid Server-side Tips . Note that when the Grid DataBinds, it will pick up a fresh set of rows, so your unsaved changes will be lost.
-
I have a problem with grid data bind during manual paging.All the page data are displayed except the 2nd page data.
I can see that datasource has the 2nd page data but for some reason its not displayed.Let me know if there is a solution for this.
Thanks
-
To which datasource grid can be bound?
-
Hi If you go to the http://aspnetajax.componentart.com/control-specific/grid/editing/editing_dataCallbackMode/WebForm1.aspx page Click "Add row". Click "Cancel" on the new row. Click "Add row". Now the new entry contains an empty "Category" column. This is tested in firefox 3.5.3, ie8 and opera 10 on Vista. best regards Henrik Pedersen Denmark
-
Hi Developers,
I am facing problem in selecting all checkboxes when the grid is in callback mode. It works pretty fine when the grid is in client mode.
Can anyone suggest me where I am facing problem. Any help will be highly appreciated.
Also please let me know which server side events needs to be call when enabling grid in callback mode.
-
I have my grid displaying data from 2 related tables. They have basic Product and Category structure/relationship. My grid binds just fine, and i get a nice dropdown with a list of 'categories' for each 'product'. Now, i have some decimal fields which contain monetary values and i need to display/format them appropriately, so i am using custom templates for that. I have 2 fields like that and when i add a custom template to one of them, my 'inserts' stops working if i don't...
-
I have a grid with edit item. And I like to update the DataSet. It´s possible to update a dataset using the grid data.(with the alterations?)
-
I've been combing through the documentation on what the options / techniques are for Databinding the Grid. Can someone give me a clue where this is documented ? Jim
-
I have a grid with edit enabled and i have a save button too. What i want to know is: What I put in button to save the alterations made in grid into database?