Skip to content

Replies

0
[Infragistics] Bhadresh Patel
[Infragistics] Bhadresh Patel answered on Aug 14, 2013 5:40 PM

Hello will_telford,

I am just following up to see if you need any assistance with this matter.

0
[Infragistics] Bhadresh Patel
[Infragistics] Bhadresh Patel answered on Jul 17, 2013 5:28 PM

Hello Matthias,

I am just following up to see if you have any further questions with this matter.

0
[Infragistics] Bhadresh Patel
[Infragistics] Bhadresh Patel answered on Jul 11, 2013 8:29 PM

Hello Matthias,

Thank you for providing the approach you sued to resolve this issue. I have looked into why this approach you used didn't work.

As you have already discovered the type attribute on the td element is not actually present until mouse over. This is done for performance reasons and is only present for the mouse events of the grid to help provide information in the event.   The _object value of the tr element that you are accessing is added to the tr element for convenience. It is only done once the JavaScript object for the row has been initialized. This happens either in mouse over or if row is accessed through the public API of the WebDataGrid.

Rather than simulating the mouse event it is recommended to use Client side API for WebDataGrid to get the row instead of using tr element directly. For example the following code accomplishes this:

    var grid = $find("wdg");  

   var row = grid.get_rows().get_row(0);

Let me know if have any further questions.

0
[Infragistics] Bhadresh Patel
[Infragistics] Bhadresh Patel answered on Jun 18, 2013 2:24 PM

Hello Matthias,

Based on the functionality you mentioned, I would recommend you to check if the document is ready to load with relevant dependencies. 

The code example:

 function GridRowEnterEditMode (src, validationGroup) {

if (document.readyState != "complete")

{

//Add some delay if document.readyState is not completed

window.setTimeout("GridRowEnterEditMode ()",500); }

else { //Code logic goes here } }

I hope this helps.

 

0
[Infragistics] Bhadresh Patel
[Infragistics] Bhadresh Patel answered on Feb 14, 2013 6:07 PM

Hello wvusaf,

Thank you for the update. Feel free to update me if you need any further assistance with this matter.

0
[Infragistics] Bhadresh Patel
[Infragistics] Bhadresh Patel answered on Feb 13, 2013 3:02 PM

Hello wvusaf,

Thank you for the update. I am just following up to see if you need any further assistance with this matter.

 

0
[Infragistics] Bhadresh Patel
[Infragistics] Bhadresh Patel answered on Feb 12, 2013 1:52 PM

Hello wvusaf,

I have logged the feature request PI13020057 regarding no selction on DropDown item when DisplayMode is set to "DropDownList" for WebDropDown on your behalf and I have sent that feature request directly to product management team. Our product team chooses new feature requests for development based on popular feedback from our customer base.

Meanwhile this feature implements, I would recommend you to use one of the approaches I have mentioned in above thread.

I hope this helps.