User Profile & Activity

Handy Surya Support
Page
of 223

Hello Michael,

Thank you for your sample. However, the sample works fine in here. I checked that you were not using the latest hotfixes for WebUIFramework.
Fyi, When you update the hotfixes for a product, please ensure that you also update the WebUIFramework.
Please let me know if this issue still persits or not after you update the WebUIFramework.

Regards,
Handy

Hello Mike,

Ok, thank your for your coorperation. I will wait for the sampe. Maybe it fails because the control is still loading the resources.

Regards,
Handy

Posted: December 16, 2010 2:58 AM

Hello,

Ok, thank you for your confirmation. However,You could not mark this as answer because this is a discussion thread.

Regards,
Handy

Posted: December 14, 2010 9:58 PM

Hello,

Shouldn't when you hit enter in edit state, it would make you exit from edit mode?
That's why I think you can also use this for your scenario.
Because you only want to change the other cell text/value after change the current cell, correct?
I think It can be done from this clientside event.

You could not check the checkbox by using that way. We have a Check method.
You would need to use the method and check it also via element.

E.g 
//check all checkbox via button click

function Button1_onclick() 
{
     var grid = ISGetObject("WebGrid1"); 
     for(var j=0;j<i;j++)
     {
        grid.RootTable.GetRow(rowIndex[j]).GetCells()[0].GetElement().childNodes[0].checked = true;
        grid.RootTable.GetRow(rowIndex[j]).Check();
     }
      return true;
}

Regards,
Handy

Posted: December 14, 2010 9:39 PM

Hello Naaz,

Ok, Thank you for the confirmation. I could not mark this as the aswer because this a discussion thread. 

Regards,
Handy

Hello Mike,

I am sorry for troubling you. But we need this sample to investigate your issue. You can also let me know your WebSpellChecker settings or configurations.

Regards,
Handy

Posted: December 14, 2010 3:25 AM

Hello Naaz,

It is not possible to do that directly. As you can see in previous project, in my dataset for table Resources, you can see what query I used.
The problem is you could not dynamically change its parameter.

e.g 
My custom select method is:

SELECT        ID, ResourceName, Description, Location, ResourceColor
FROM            Resources
WHERE        (ID = ?) OR (ID = ?)

My suggestion is, provide some parameters to be called in your query.
e.g

SELECT        ID, ResourceName, Description, Location, ResourceColor
FROM            Resources
WHERE        (ID = ?) OR (ID = ?) OR (ID = ?) OR(ID = ?) OR(ID = ?) OR(ID = ?) OR(ID = ?)

Then, validate in your login information. If user has 3 parameters such as 1,2 and 3, You will need to substring "," and split each values. After that, add each values into the parameter.

e.g 
in ISDataSourceSelecting serverside event, define

 e.InputParameters[0] = 1;
 e.InputParameters[1] = 2;
 e.InputParameters[2] = 3;

 It will run the query like this:

SELECT        ID, ResourceName, Description, Location, ResourceColor
FROM            Resources
WHERE        (ID = 1) OR (ID = 2) OR (ID = ?) OR(ID = 3) OR(ID = null) OR(ID = null) OR(ID = null)

Regards,
Handy

Hello Mike,

Thank you for your recording video. However, please do not reply into our notification service. Please reply into community thread instead of replying into the notification service.
Unfortunately, I could not replicate your issue in here. Please see my recording video. I also used Iframe content. The sample works fine. So, would you mind to send us a simple runable sample that replicates this issue?

Regards,
Handy

Hello Mike,

Would you mind to show use with recording video? I also use build 1.0.1000.12 but it works fine in our sample.

Regards,
Handy

Posted: December 13, 2010 5:36 AM

Hello Naaz,

It does not matter. You only configure your query to select more than one parameter in your select Resources. Then, add parameters that you would like to use. Please see my attached sample, I assign two sessions as the parameter.

Regards,
Handy

All times are GMT -5. The time now is 2:27 PM.
Previous Next