User Profile & Activity

Martin Lie Support
martin@intersoftsolutions.com
Page
of 43

Hello Joe,

I’m currently still investigating this issue and need more time to provide you with solution, suggestion, or sample.

I will test your sample and see how it goes on my end. I will let you know the update as soon as possible.

Thank you.

 

Regards,
-Martin-

Hello,

Please forgive me for lack of understanding about the reported problem. I'm not clear enough with your explanation on this part "the keyboard input is ruining my ability to draw via keyboard input". Do you want to use another keyboard input rather than the standard one?

I'm not sure we have this setting to disable keyboard input in UXListBox, but however, I will need to investigate further on this issue.

Hope this helps. Thank you.

 

Regards,
-Martin-

Hi Robert,

Glad to hear you have found a workaround.

So, it is kind of similar with the previous code but now you simply set each cell with your defined CssClass.

Do you have a simple runable sample about this scenario? It might be useful for other users if we can create a knowledge base for this one.

Thank you.

 

Regards,
-Martin-

Hello,

I know that I might have missed something during my attempt to reproduce the issue. I’m willing to advice you further but in order to do so we would need you to provide a simple working sample that replicates this issue if possible, so that I can run a test on the issue that you have reported and delivered it to the developer team.

Hope this helps. Thank you.

 

Regards,
-Martin-

 

Hello Fung,

It seems that you need to enter edit mode in order to configure the WebInput. Otherwise, you will get error when you type something in highlight mode.

You can try to set CellClickAction to CellSelect under LayoutSettings: 

<ISWebGrid:WebGrid ID="wg" runat="server" Height="250px" Width="500px">
   <LayoutSettings CellClickAction="CellSelect">

Then, use the following code in OnCellSelect client-side event:

function wg_OnCellSelect(controlId, tblName, rowIndex, cellIndex)
{
   var wg = ISGetObject(controlId); 
			
   if (cellIndex == 2)
      wg.LayoutSettings.Set("EditOnClick", true, true);
   else
      wg.LayoutSettings.Set("EditOnClick", false, false);

   return true;
}

This code will implement edit mode only when you click any cell on DateTime column.

Attached is the sample for your reference. 

Posted: May 15, 2011 11:24 PM

Hello,

I've tried to use "~" in both ControlBoxImage and WebDialogBoxButton image property and it seems that it is a bug from the control itself.

However, I need to confirm this issue with the developer team. I have reported this issue to them to be investigated further.

I'll let you know when I get the update from the team.

Thank you.

 

Regards,
-Martin-

Hello,

Try to use the following code to add the cell manually:

childRows[10].Cells[0].Text = "PS1372";
childRows[10].Cells[1].Text = "Computer Phobic AND Non-Phobic Individuals: Behavior Variations";
childRows[10].Cells[2].Text = "Psychology";
childRows[10].Cells[3].Text = "14.69";

Thank you.

 

Regards,
-Martin-

Posted: May 12, 2011 7:38 PM

Hello,

You should use "./Images/Intersoft/OK.png" instead of "~".

If you use "~", the path would be "http://localhost:xxxx/WebDesktop/~/Images/Intersoft/OK.png" and it will not render the image correctly.

Hope this helps. Thank you.

 

Regards,
-Martin-

Hello Jean,

You just need to change childNodes[0] to childNodes[1] for the 2nd childNodes from the end.

Therefore, for 2nd bar:

   var navBarItemFrame = navBarItem.Parent.FrameObj.childNodes[0].childNodes[0].childNodes[1].childNodes[0].childNodes[1].childNodes[0];

For the 3rd bar:

   var navBarItemFrame = navBarItem.Parent.FrameObj.childNodes[0].childNodes[0].childNodes[1].childNodes[0].childNodes[2].childNodes[0];

Hope this helps. Thank you.

 

Regards,
-Martin-

Hello,

Thank you for your reported issue.

I have successfully replicated your issue on my end here.

Regarding the exception error, I will need to discuss further with the development team.

I will let you know the update when I heard news from the team.

Thank you.

 

Regards,
-Martin-

All times are GMT -5. The time now is 8:35 PM.
Previous Next