Hobbies - Reviews and free downloads:: Free QuickTips Dog for simple notes, so long as you dont expect anything fancy. would benefit from inclusion of tool tips and a Help file, and http://soft.bitcomet.com/tag/lilmd106_4.htmlHOME | Hello,
What I don't understand from examples and documentation is concept of helping tooltips. All I want is help user what is he supposed to type in textfield. I tried this code:
Ext.QuickTips.init();
var gamertagTF = new Ext.form.TextField({
fieldLabel: 'Gamertag',
name: 'Gamertag',
qtip: 'Zde napiš svůj Gamertag (přezdívku na live)',
allowBlank:false
});
It did't work, so I tried tooltip, but still without luck. Is there any simple way do create classic tooltip for textfield? fullasagoog: Rich Internet Application Goodness:: Ext.QuickTips functionality provides attractive and customizable tooltips for any element. simple ways you can utilize them to enhance your tooltips. http://www.fullasagoog.com/index.cfm?blogid=606HOME |
qtip isn't a config option of Ext.form.TextField.
Use:
Ext.QuickTips.register({id: gamertagTF.getId(), text: 'Zde napiš svůj Gamertag (přezdívku na live)'});
(after the field is rendered)
try:
Ext.QuickTips.register({target: gamertagTF.getId(), text: 'Zde napiš svůj Gamertag (přezdívku na live)'});
instead of:
Ext.QuickTips.register({id: gamertagTF.getId(), text: 'Zde napiš svůj Gamertag (přezdívku na live)'});
What's the wisdom behind not having quicktips as a config parameter? Seems so illogical that there must be a reason behind it, no?
If you want to make sure, use:
var gamertagTF = new Ext.form.TextField({
fieldLabel: 'Gamertag', symfony framework forum: General discussion => Building Own Generator:: For now, has anyone got anything to say about my previous post? If anyone as some simple example of grid or others with symfony/ext it will be cool http://www.symfony-project.org/forum/index.php/m/49686/HOME | Achievo Community :: View topic - Ext JS experiments:: PHP is seen as a good fit for simple things, an index.php + some smarty templates. ATK comes into play when theres no time to build anything. http://forum.achievo.org/forum/viewtopic.php?t=7681HOME |
name: 'Gamertag',
allowBlank:false,
listeners: {
render: function(c) {
Ext.QuickTips.register({id: c.getId(), text: 'Zde napiš svůj Gamertag (přezdívku na live)'});
}
}
});
bump....anyone plz? still can't find problem
Sounds good, this example sould be in doc, its most logical call to invoke tooltip I seen so far.
Bad news is, that it still does not work. I resign for this functionality for now (everyone with brain inside should know what to fill in address field) but if there is someone interested, full code is here: http://livemap.aspone.cz/ext_scripts.js
Probably because the validaiton functions use quicktips.
Yes, I just tried, because it was in some example of other control. It still does not work..no error, no quicktip. What means after is rendered? I am calling doLayout on FormPanel and then this register function.
Where's The Advantage In Windows Genuine Advantage?
Stocks Bounce After S&P Joins Bear Market
|