Jump to content

SayeyeZohor

uniGUI Subscriber
  • Posts

    215
  • Joined

  • Last visited

Everything posted by SayeyeZohor

  1. One possible solution I think MainForm -> Script: Ext.grid.feature.Grouping.prototype.expandTip="expand..."; //or "" Ext.grid.feature.Grouping.prototype.collapseTip="collapse..."; //or "" insert which event of unidbgrid?
  2. 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
  3. hi, how to change grouping header font name unidbgrid?
  4. 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 }); }
  5. SayeyeZohor

    Farsi

    عکس ر.و درست اینجا اپلوود کن ما هم ببینیم مشکل چی بوده که حل شد ؟
  6. I dont want to change the data set.Any changes that need to be done will only be on Dbgrid and as client side
  7. 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
  8. Hello. How to separate 3 digits of a 3-digit number into a uniDbgrid cell?
  9. یک آموزش کامل برای استفاده از این امکان می شه برای دانلود یا دیدن قرار بدید؟ Do you have a full tutorial for using a hyper server?
  10. hi how focus of unicheckbox to uniedit?
  11. hi how focus of unicheckbox to uniedit?
  12. 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 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
  13. Powered by uniGUI 1.70.0.1485 & Ext JS 6.6.0 پس چرا ساپورت نشده ؟
×
×
  • Create New...