Jump to content

SayeyeZohor

uniGUI Subscriber
  • Posts

    215
  • Joined

  • Last visited

Posts posted by SayeyeZohor

  1. 3 hours ago, Sherzod said:

    Hi,

    
    .x-grid-group-title {
      font-family: cursive;
      font-size: 14px;
    }

     

    tnx not working

     

    .x-rtl.x-grid-view .x-grid-group-hd-collapsible .x-grid-group-title {
        background-position: right center;
        padding: 0 14px 0 0;
        font-family: IRANYekanWeb;
        font-size: 13px;
    }

    with this css code work ;)

  2. On 5/7/2018 at 3:11 PM, Mohammed Nasman said:

    Hello,

     

      I'm trying to use Sweetalert library to show better alerts, but when I try that, it became behind the form, as following:

    
    function click(sender, e, eOpts)
    {
         swal("Good job!", "You clicked the button!", "success");
    
    }
    post-1329-0-51984600-1525689625_thumb.png
     
    I'm using build 1421
     
     

    post-1329-0-51984600-1525689625_thumb.png

    how to dynamically pass title and message parameter to this code?{

    swal("Good job!", "You clicked the button!", "success");
    swal({
        title: 'Demo',
        html: 'Account Information not available in Demo mode',
        type: 'info',
        showConfirmButton: true,
        showCancelButton: false,
        confirmButtonText:  'OK',
        cancelButtonText:  '',
        animation:  true,
        allowEscapeKey:  false,
        confirmButtonColor: '#BDBF37',
        cancelButtonColor: '#d33',
        timer:  0,
        allowOutsideClick:  false
    });

    }

     

     

  3. On 1/4/2017 at 8:50 PM, Sherzod said:

    Hi,

     

     

    Try this:

     

    1. UniServerModule -> CustomCSS:

    
    .myList .x-boundlist-item {
        color: green;
        font-size: 14px;
        font-family: sans-serif;
    }

    2. UniComboBox, UniDBLookupComboBox -> ClientEvents -> UniEvents -> function beforeInit:

    
    function beforeInit(sender, config)
    {
        config.listConfig = {
            cls: 'mylist'
        }
    }

    Best regards.

    for me not working

     

    please refer me

  4. On 1/25/2019 at 11:43 PM, mierlp said:

    Hi

    In the attachment a simple example how to send a sms text message.
    In this example is use www.bulksms.com for sending my sms messages
    but you can have you're own one if you want.

    Every sms provider has his own url for sending messages, in this case
    you see the url from bulksms. So in you're own case you have to
    see the documentation of the sms provider.

    Most sms providers have also mail-to-sms, but for me this is a
    simple low-cost solution to create you're own 2FA. 

    Regards Peter

     

    SendSMS.zip

    tnx serverModule.pas  not found

  5. On 5/28/2019 at 1:03 PM, Hamid said:

    ممنون حل شد

    عکس ر.و درست اینجا اپلوود کن ما هم ببینیم مشکل چی بوده که حل شد ؟

  6. Hello
    I have a database in which there is a table.one of its fields is integer type.
    Now when I display this field in Grid it shows  8546110069 while I want to display  in Dbgrid like 85,463,110,069
    Please keep in mind I want   these 3 digit of the 3 are seprate from as client side and a code which written in Client event

  7. Hi, with this code, I Remove all tag in html text in sql function and then I copy and display a part of the text

    I made a trick :blink2::biggrin:

    tnx @Sherzod @Farshad Mohajeri

     

    CREATE FUNCTION [dbo].[udf_StripHTML](@HTMLText VARCHAR(MAX))
    RETURNS VARCHAR(MAX)
    AS
    BEGIN	
        DECLARE @Start INT
    	DECLARE @End INT
    	DECLARE @Length INT
    	
    	SET @Start	= CHARINDEX('<',@HTMLText)
    	SET @End	= CHARINDEX('>',@HTMLText,CHARINDEX('<',@HTMLText))
    	SET @Length = (@End - @Start) + 1
    	
    	WHILE (@Start > 0) AND (@End > 0) AND (@Length > 0)
    	BEGIN
    		SET @HTMLText	= STUFF(@HTMLText,@Start,@Length,' ')
    		SET @Start		= CHARINDEX('<',@HTMLText)
    		SET @End		= CHARINDEX('>',@HTMLText,CHARINDEX('<',@HTMLText))
    		SET @Length		= (@End - @Start) + 1
    	END
    	RETURN LTRIM(RTRIM(@HTMLText))
    END

     

  8. On 9/20/2015 at 1:51 AM, Farshad Mohajeri said:

    Salam

     

    Responsive layout is not supported in current edition, but when we move to Ext JS 6 we can start supporting responsive layout.  Ext JS 6 has a support for responsive design. That said we have two different layout for mobile and desktop development.

    Powered by uniGUI 1.70.0.1485 & Ext JS 6.6.0

     

    پس چرا ساپورت نشده ؟

     

×
×
  • Create New...