EasyUI Forum
May 16, 2024, 11:04:55 AM *
Welcome, Guest. Please login or register.

Login with username, password and session length
News:
 
  Home Help Search Login Register  
  Show Posts
Pages: [1] 2 3
1  General Category / General Discussion / Re: How to change Title , Message in progress Bar ? Solved !! on: March 25, 2016, 10:30:31 AM
Thank you very much Sir,

          Your guidance really working perfectly ! Shocked

So Happy get helped again  Cheesy  Cheesy  Cheesy 


Regards,
Jonny
2  General Category / General Discussion / How to change Title , Message in progress Bar ? on: March 25, 2016, 04:15:43 AM
Dear Sir/Madam,

       Could you please teach me how to set (change) Title / Message in progress bar?

Below is working good's technic:
$.messager.progress({ title: 'Updating:', msg: 'Data:', interval: 0 });
var bar = $.messager.progress('bar');   
bar.progressbar('setValue',  100);


Then I imitate the above technic:
var tit = $.messager.progress('title');    // get the progressbar object
var msg = $.messager.progress('msg');    // get the progressbar object
tit.progressbar('setValue',  'Updating hardly:');
msg.progressbar('setValue',  'Data: on the go bla bla');


Please help me correct the command/syntax in red color which were error at all...
Thank you..


Regards,
JONNY








         
           
3  General Category / General Discussion / Re: How to access element in page opened by JEASYUI-TABS from parent? on: February 14, 2016, 04:19:52 AM
Hello Sir,

Thank you very much for the solution.

It works perfectly...

Now I can easily call any function located on child page....  Smiley Cheesy


Regards,
Jonny
4  General Category / General Discussion / How to access element in page opened by JEASYUI-TABS from parent? on: February 13, 2016, 10:11:24 PM
Dear Sir/Madam,

       Is there possible to access combogrid or any element in page opened by jeasyui-tabs from parent ?

Usually I open new page like below:

var content = '<iframe scrolling="auto" frameborder="0"  src="CHILD.HTML" style="width:100%;height:100%;  overflow:hidden"> </iframe>';
$('#tt').tabs('add',{ title:"CHILDMENU",
                           content: content,
                           closable:true,
                           bodyCls:'noscroll'
});

Then for some reason, I want to reload combogrid inside CHILD.HTML

I failed using this way:
var dechild = $('#tt').tabs('getTab', 'CHILDMENU');
if (dechild!= null) {
        var cooo = dechild.document.getElementById("OOO");
        cooo.combogrid('reload');
       }
}   


Please help me solve the problem...
Thank you...

Regards,
JONNY
5  General Category / General Discussion / Re: How to set COMBOGRID to point on first row or any row? on: February 08, 2016, 08:47:00 PM
Thank you very very much for the solution Sir...

This is exactly what I am looking for  Cheesy
Now I easily can set combogrid pointing the first row without knowing the data container...

Regards,
JONNY
6  General Category / General Discussion / Re: How to set COMBOGRID to point on first row or any row? on: February 08, 2016, 07:45:47 AM
Thank you for responding me, Sir Jarry..

But is there any command or parameter to locate combogrid's value on first row ?

My Combogrid usually read data from mysql's table...
I don't want to detect / read the first data from mysql's table
I simply want to set combogrid pointing the first row without knowing the data container....

Please investigate deeper for me...
Thank you..

Regards,
JONNY

7  General Category / General Discussion / How to set COMBOGRID to point on first row or any row? on: February 07, 2016, 08:46:45 PM
Dear Sir/Madam,

            In combobox, the initial / default index is first row.
But in combogrid, there is no default first row, So it needed to 'setValue' to pointing the row.....

In fact I like the default index on combobox ( auto point on first row )..
Is there any command to locate row (setvalue) in combogrid by using index number ?
So I can freely set combogrid goes to first row or lastrow or any row..

Please help me if anybody experience on this...
Thank you.

Regards,
JONNY
8  General Category / General Discussion / Re: How to disable shadow when popup messager.alert ? on: February 02, 2016, 08:32:33 PM
Hello Sir,

Thank you very much for providing sample in jsfiddle..

By adding  "modal: false" , the shadow ( transparent effect ) is gone. Cheesy


Regards,
JONNY
9  General Category / General Discussion / Re: How to disable shadow when popup messager.alert ? on: February 02, 2016, 08:48:42 AM
Thank you for responding Sir...
But when I applied to my function...
It doesn't work.. the background still gone transparent..
Please check my syntax:

function alertbox(demessage,desimbol,detitle,dewidth,deheight) {
    if (dewidth) {}  else {dewidth=350}
    if (deheight) {}  else {deheight='auto'}

$.messager.alert({   title: detitle ,
               msg: demessage,
               shadow: false,
               icon: desimbol,
               width: dewidth,
               height: deheight
               });
   return false;            
}


Regards,
JONNY
10  General Category / General Discussion / How to disable shadow when popup messager.alert ? on: February 02, 2016, 08:17:37 AM
Hello Sir/Madam,

       Similiar to case about disabling messager's shadow in topic :
http://www.jeasyui.com/forum/index.php?topic=5325.msg13429#msg13429
that solved using stworthy's solution:
$.messager.confirm({
   title:'My Title',
   content:'Are you confirm this?',
   shadow:false,
   fn:function(r){ if (r){
         alert('confirmed:'+r);
      }
   }
});

But I need the right syntax when calling $messager.alert()
Could anyone experience disablling shadow on messager.alert()

Please help me...

Regards,
JONNY

11  General Category / General Discussion / Re: How To Disable SHADOW EFFECT when popup EASYUI-DIALOG ? on: January 07, 2016, 08:08:50 PM
Hello Jarry,
     
       Thank you for the answer, the background is now behave like I expected!
Cheesy

Is the background's opacity below the dialog changeable ?  ( eg: changing file dialog.css ) ?
It will be very nice if settable like opacity: 0.9
So the background will just looks dimmer a bit



Regards,
JONNY
12  General Category / General Discussion / How To Disable SHADOW EFFECT when popup EASYUI-DIALOG ? on: January 07, 2016, 12:04:12 PM
Hello Sir/Madam,

Is there any parameter to disable the Shadow Effect or set the background's OPACITY when poping out easyui-dialog ?

Let say when executing -->  $('#dialok1').dialog('open').dialog('setTitle','Dialog 1:');     
the background below the dialok1 will be darker..

then I execute the new dialok2 above dialok1 -->  $('#dialok2').dialog('open').dialog('setTitle','Dialog 2:');     
the background below the dialok2 will be more darker....

For some reason, I want to disable this shadow effect  ( it made the whole page unreadable )

If anybody can handle this, please help / guide me..
Thanks in advanced.

Regards,
JONNY


13  General Category / General Discussion / Re: How to hide / unhinde the "close button" in Dialog's Title Bar ? on: October 18, 2015, 07:51:34 AM
          Thank you very much for the help, Master Jarry..

Dialog title's Close Button is now disappear totally....

The very simple command, but useful.  Smiley


Regards,
JONNY
14  General Category / General Discussion / How to hide / unhinde the "close button" in Dialog's Title Bar ? on: October 18, 2015, 01:59:27 AM
Dear Sir/Madam,

       For some situation i don't allow user to click CLOSE button located on title bar in DIALOG  (position top right )

Is anyone know the way to HIDE / UNHIDE it ?
I did not find any command in documentation ...

Please help me..
Thanks in advanced.

Regards,
JONNY
15  General Category / General Discussion / Re: How to set datagrid's PANEL Height to 100% without effecting width ? on: October 05, 2015, 02:21:01 AM
    Thank you very much Sir...

Problem solved by removing --> fit="true" and adding style="width:300px;height:100%"
 
Very Glad when receiving response from you.. that means problem cleared... Cheesy


Regards,
Jonny
Pages: [1] 2 3
Powered by MySQL Powered by PHP Powered by SMF 1.1.18 | SMF © 2013, Simple Machines Valid XHTML 1.0! Valid CSS!