|
Rank: Member Groups: Member
Joined: 4/15/2009 Posts: 13
|
Hello , 1st time user.
I have a eo.FileExplorer control and I want to detect which file has been clicked/selected on the client.
I am using "ClienSideOnItemSelected" in Properties and entered a test name of a Javascipt routine.
I have then entered the test JS routine in the source file : <source> function TestClick() { ..... } </source>
I can't seem to detect the click ?
Any ideas ?
Thanks for your help.
Reza
R Khan
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Hi, I believe the property should be ClientSideOn FileSelected: http://doc.essentialobjects.com/library/1/eo.web.fileexplorer.clientsideonfileselected.aspxAlso make sure you give it the function name, not a function call. For example, the following code is wrong:
Code: HTML/ASPX
ClientSideOnFileSelected="TestClick();"
This is the correct form:
Code: HTML/ASPX
ClientSideOnFileSelected="TestClick"
Thanks!
|
|
Rank: Member Groups: Member
Joined: 4/15/2009 Posts: 13
|
yep , you are right , thanks. This product suite is superior that other "German" company have and the support is top-notch. Cheers mate. Reza
R Khan
|
|
Rank: Administration Groups: Administration
Joined: 5/27/2007 Posts: 24,194
|
Glad to hear that! Please feel free to let us know if you have any more questions.
|
|