Loading...

Anonymous

Anonymous

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 2,745 total)
  • Author
    Posts
  • in reply to: How to change error messages language #7481
    Anonymous
    Anonymous
    Participant

    Hi ! I’ve installed ezLocalizer, however, when I try to make a new project (or open an existing one) it doesn’t allow me to edit/add any new translation. Do I have to open an existing project to edit the values?

    Here’s a screenshot of my current view.

    Thank you.

    in reply to: Toolbar Extra Final Separator #7454
    Anonymous
    Anonymous
    Participant

    Hello,

    n

    I can reproduce this case. As a workaround, you can try to add some script to modify this element:

    n

      n

    1. Add a HTML Form Web Part into the page;
    2. n

    3. Edit this web part source;
    4. n

    5. Add below code into the text editor:
    6. n

    n

    <script>

    n

    $telerik.$(document).ready(function(){

    n

    $telerik.$('.rmSeparator').last().removeClass('rmSeparator');

    n

    });

    n

    </script>

    n

      n

    1. Save all;
    2. n

    n

    That script will find the last separator and clear its class.

    n

    in reply to: How to change error messages language #7204
    Anonymous
    Anonymous
    Participant

    Hello,

    n

     

    n

    QuickApps for SharePoint supports the multi-language, you can use the ezLocalizer tool to modify the resource file. You can find this tool in the installer -> Tools. Use it to create a Spanish one, then translate the message to Spanish. After that, if your culture is Spanish(you can find the setting in IE -> Options -> Languages -> add the language), QuickApps will translate the message automatically.

    n

     

    n

    Anonymous
    Anonymous
    Participant

    I found a workaround – it turns out that in IE 11, if we enabled Compatibility View settings and add our intranet portal site url, we can connect two web parts successfully.
    https://community.office365.com/en-us/f/154/t/233685

    in reply to: remove or disable sort on column header in qlistview #7202
    Anonymous
    Anonymous
    Participant

    Thanks!  Yes – worked very well – was able to change the tooltip and redirect a the title to another page:

    var colTitle="ALBEMARLE GENERAL NEWS";
    if(colHeader.innerText==colTitle)
    {
    colHeader.href="/ACVANews/Forms/general.aspx"; colHeader.title="Click Here to View Archives";
    }

    Anonymous
    Anonymous
    Participant

    Hi,

    n

    qExcelViewer does not support the Child list. If you want to export the rows from both parent list and child list, please use the Export function of the qListView. 

    n

    1. Open the ezEdit.

    n

    2. Go to Appearance –> Toolbar tab. Check Show Export Button. 

    n

    3. Save the configuration.

    n

    4. On the toolbar of the qListView, click Actions, then click Export. 

    n

    5. In the Export To drop down list, choose Excel 93-2003 (*.xls) or Excel (*.xlsx). Check the Ignore Paging if you want to export all the list items in the SP lists. 

    n

    6. Click Go button.

    n

    Please note: the Export functions of qListView can just export the fields you configured in the Display Fields and Child View Display Fields.

    n

    Thanks,

    n

    in reply to: remove or disable sort on column header in qlistview #7200
    Anonymous
    Anonymous
    Participant

    Hi ,

    About how to hide the column header. Please follow these steps:

    1. Open ezEdit.
    2. Go to Grid Appearance tab. Input to following line in the Header Style: display:none;
    3. Save the configuration.

    About how to disable the sorting by clicking the column header. qListView doesn’t have an option to disable the sorting for a specific column. If you want to do this, you need to use javascript.

    1. Open ezEdit, then go to Custom Display tab. Copy and paste the following javascript to the Results Footer, remember to replace the value of the colTitle to your actual column title displayed on the header.
      <script type="text/javascript">
      var links=document.getElementsByTagName("a");
      var colTitle="WE WANT TO HIDE THIS OR STOP IT FROM SORTING";
      for(var index=0;index<links.length;index++)
      {
      var colHeader=links[index];
      if(colHeader.innerText==colTitle)
      {
      colHeader.href="#";
      }
      }
      </script>
    2. Go to Display tab, uncheck Enable AJAX to disable the AJAX. So that the javascript can be run every time the qListView raises a postback event.
    3. Save the configuration.

    Thanks,

    Anonymous
    Anonymous
    Participant

    Hi Thomas,

    n

    My answers are in blue color.

    n

      n

    • Do I need to purchase a new license key: I believe so since upgrading to a x.0 version.n

      — You need to update your license to 6.x license. About how to get a new license I suggest you contact the relevant sales guy.

      n

    • n

    • What is the disk usage after installment?n

      — I am not sure about the exact disk usage of 6.1. But it should be very close to the disk usage of 5.4.

      n

    • n

    • Does it work on a Windows 7 enterprise with 180day-trial SharePoint Server Foundation version? (development environment)n

      — 6.1 can support SharePoint Foundation version. But we tested it on Windows Server not Windows 7. If 5.4 can work on Windows 7, I believe 6.1 can also work.

      n

    • n

    • What happens with the content from all the currect web parts (5.4) after upgrading to 6.1. I noticed in the installment guide that its necessary to unistall previous installments first. This leaves very little hope for all the current content which exists in all the intances of the web parts used. Still some hope here 😉
    • n

    n

      — In my understanding, the contents you mean in your question are the web part configurations and the data displayed on the web parts, right?

    n

    Web part configurations are saved in the content database. And the data is from the SP lists/libraries. It is also saved in the content database. All the web parts configurations and the data can be kept after upgrading to 6.1. 

    n

    Thanks,

    n

    in reply to: Hyperlink rendered when saving in qListForm #7198
    Anonymous
    Anonymous
    Participant

    Hi

    n

     

    n

    The cross-site lookup field is not a native SharePoint field, that is just used for qListForm only. The data format is as design. But if you configure this field for the qListForm as a display filed, you will see this field can be display normally. More detail, you can check the help document.

    n

     

    n

    in reply to: Throttling limit using Http parameter #7197
    Anonymous
    Anonymous
    Participant

    Hi ,

    Could you please give me the error message?

    BTW. If you don’t care about the performance, you can simply disable the throttling of the relevant SP list to avoid the error. In the following powershell script, replace the values of $siteURL and $listName with your actual site url and list name. Save the script to a *.ps1 file. Then run it on your SharePoint Server.

    Add-PSSnapin Microsoft.SharePoint.PowerShell

    $siteURL = "http://siteUrl";
    $listName = "listName";

    $spWeb = Get-SPWeb -Identity $siteURL;
    $list = $spWeb.Lists[$listName];
    Write-Host $list.EnableThrottling;

    #Disable the throttling
    $list.EnableThrottling = $false;

    If you want to enable the throttling again, you just need to change the $false to $true.

    Thanks,

    in reply to: How to limit field size in qListForm #7196
    Anonymous
    Anonymous
    Participant

    This worked perfect, thank you!

    in reply to: How to limit field size in qListForm #7195
    Anonymous
    Anonymous
    Participant

    Hi,

    n

     

    n

    I think you cannot do that in qListForm directly. But why not do that in SharePoint field setting? there has a “Maximum number of characters” setting in the field.

    n

     

    n

    in reply to: Calendar Sorting #7193
    Anonymous
    Anonymous
    Participant

    was there ever a resolution to this need?

    n

    I require the same thing.

    n

    The closest I could get was to create a dummy date/time field and create an index in it via a workflow. The problem is then that index shows up in the hover over text and on the calendar when only one item is on a day.

    n

    This is being done in a custom (calendar) list with the standard monthly calendar view. For events, not resources however the sorting issue is a main criteria. We need to be able to group a day's service event items by the team which is handling the events.  Separate calendars with overlays is insufficient, they need to reside within the same list.

    in reply to: List Throttling Limit #7194
    Anonymous
    Anonymous
    Participant

    Hi ,

    n

     I managed to solve it using a CAML query.

    n

    Your assistance was a great help,

    n

    Thanks

    in reply to: List Throttling Limit #7192
    Anonymous
    Anonymous
    Participant

    Hi ,

    n

    I basically want it to something like

    n

    Payment Date > [Today]-30

    n

    is that possible?

    n

    Regards

Viewing 15 posts - 31 through 45 (of 2,745 total)