<< Click to Display Table of Contents >> Navigation: »No topics above this level« TOC : OZ e-Form Extension > OZ e-Form JavaScript API > Input > TextBox > Method >SetCustomUI |
Sets the information of the search button displayed on the numeric keypad.
Prototype :
void SetCustomUI
(
string CustomUI
)
Arguments :
CustomUI |
information of the search button |
Reference :
Sets CustomUI arguments to a JSON string in the format {"multiscreen":{"customsearch":{"Key1":"Value1","Key2":"Value2",...,"Keyn":"Valuen"}}}.
The Key that can be set are as follows.
Key |
Value |
buttontext |
text of the search button |
It works only when the keyboard type of the text box is set to numeric in the sub-screen of a multi-screen environment.
Example :
var str_json = "{" + "\"multiscreen\":{\"customsearch\":{\"buttontext\":\"Search\"}}" + "}";
This.SetCustomUI(str_json);
This.SetKeyboardType("Numeric");
Available Events :
All Events