• Change Color of Selected Row Text

    Using javascript, how would i change the color of the text of the selected row of a webdatagrid. If the text is white I want to change it to black when the user clicks on the row to select it. The webdatagrid allows for multiple rows to be selected.  Thank…

  • Re: WebDataGrid issue - MissingRecordException: Requested record cannot be found by key.

    As a little bit of further information, I have tested this with the WebDataGrid using an ObjectDataSource as well as an AccessDataSource and the same exception is thrown regardless of the DataSource type, which seems to indicate a WebDataGrid issue.  I…

  • WebDataGrid Header text can not see

    when I Dynamically add columns for WebDataGrid,but the WebDataGrid Header text can not see,why? Below is my code BoundDataField bdField = new BoundDataField(); bdField.Key = rfInfo.rf_chName; bdField.Header.Text = rfInfo.rf_chName; bdField.Hidden…
  • How to replace UltraWebGrid with the WebDataGrid/WebHierarchicalDataGrid

    How to I go about replacing the UltraWebGrid with the WebDataGrid/WebHierarchicalDataGrid ?

    Does WebDataGrid/WebHierarchicalDataGrid have the same feature set of UltraWebGrid ? 

    Is there a guide to do this ? 

    Do I need to do a complete rewrite ?

    I presume…

  • Re: How to write UltragridRow in WebdataGrid

    Can you please share the solution. Actually I am trying to add one empty row in webdatagrid.

    We have same functionality in ultrawebgrid like:

    UltraGridRow emptyrow = new UltraGridRow();

    emptyrow.Style.CssClass ="";

    grid1.Rows.Add(emptyrow…

  • Re: WebdataGrid Click Client side event handler not recognising in a User Control?

    Hello Raja,

     I suggest you set the ClientIDMode property of the WebDataGrid and WebImageButton to “Static”. By setting this property you can access the WebDataGrid and WebImageButton from the external Javascript files.

    Please let me know if…

  • How to Summarise the Particular Column Values in WebDataGrid

    Hi,

        i have one WebDataGrid in my form...grid contain one column name is total marks.now i want summarize the column and display the total values in footer or any place using WebDataGrid Summary option....how can i do that...anybody help me please.

  • Filtering for un-bounded item template column

    Hi..

    Can anyone let me know how to apply filtering for item template column in webdatagrid.When we create a item template in webdatagrid filtering is not being applied, is there any alternative way to create a custom filtering for the webdatagrid item…

  • How to change TemplateDataField values from InitializeRow sub in codebehind.

    Hello, I have a WebDataGrid with the TemplateDataField shown below. First, I would like to get a value from the first column in each row, then I would like to create the NavigateUrl value for each TemplateDataField in the WebDataGrid. Please help with…

  • hyphen changed to ‑

    I have a webdatagrid.

    In the webdatagrid I have a cell item with the value "Monte-Carlo".

    When I call the "webDataGrid.getSelectedRows().getItem(0).get_value()" function on this cell, the function returns me "Monte‑Carlo".…