@boikom

@boikom

Forum Replies Created

Viewing 15 posts - 601 through 615 (of 918 total)
  • Author
    Posts
  • in reply to: How to add link with routerLink(Angular) in Grid column #101026
    admin
    Keymaster

    Hi Ronak,
    Could you share a stackblitz example? You can use this template for your example: https://stackblitz.com/github/htmlelements/smart-webcomponents-angular/tree/master/grid/overview
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Minimum 4 Task for Gantt ? #101022
    admin
    Keymaster

    I have used code from here, i have not changed anything  https://www.htmlelements.com/angular/demos/gantt/resource-timeline-mode-diagram
    Just use below JSON as datasource.
     
    <div>
    <div>dataSource: Array<object> = [</div>
    <div>{</div>
    <div>label:’Development’,</div>
    <div>synchronized:true,</div>
    <div>expanded:true,</div>
    <div>disableResources:true,</div>
    <div>type:”project”/* Project */,</div>
    <div>tasks: [</div>
    <div>{</div>
    <div>label:’User Interface Design’,</div>
    <div>dateStart:’2020-02-01′,</div>
    <div>dateEnd:’2020-02-10′,</div>
    <div>progress:0,</div>
    <div>type:”task”/* Task */,</div>
    <div>resources: [{</div>
    <div>id:’megan’,</div>
    <div>label:’Megan’,</div>
    <div>},</div>
    <div>{</div>
    <div>id:’parth’,</div>
    <div>label:’parth’,</div>
    <div>}]</div>
    <div>},</div>
    <div>{</div>
    <div>label:’Controllers & Event’,</div>
    <div>dateStart:’2020-02-10′,</div>
    <div>dateEnd:’2020-02-20′,</div>
    <div>progress:0,</div>
    <div>type:”task”/* Task */,</div>
    <div>resources:’megan'</div>
    <div>}</div>
    <div>]</div>
    <div>}</div>
    <div>];</div>
    </div>

    in reply to: Gantt Chart + Horizontal Scroll #101018
    admin
    Keymaster

    Thanks, will there be a release where this limitation will be handled ? actually,  i have quite few fields against tasks and i am wondering how can i handle this…
     
    Thanks once for prompt reply.

    in reply to: Grid Dancing….. :) #101017
    admin
    Keymaster

    Thanks, i could solve the issue. by removing the <div><div *ngIf=”columns.length>0; else loading;”></div> and moving all properties setting to ngAfterViewInit. however,  i was wondering how do i creating a loading effect on the page while grid is loading data into it…
     

    in reply to: Grid Dancing….. :) #101015
    admin
    Keymaster

    Hi GLMSDev,
    The variable this.grid is undefined, when you try to use it. This basically means that your app.component.html template reference #grid or something else which you use is not bound to a ViewChild in your app.component.ts or the moment when you try to refer to that variable is before the Angular view is initialized. My suggestion would be to take a look and get started from: https://www.htmlelements.com/docs/grid/#angular.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Gantt Chart + Horizontal Scroll #101014
    admin
    Keymaster

    Thanks for the tip. I tried this and it showed me only 4 columns, but i have many more columns in it. also, it just expanded the grid width…and no scroll bar in left side of section

    in reply to: Grid Dancing….. :) #101013
    admin
    Keymaster

    Thanks. How do i make sure that view/grid is loaded properly. at the moment i have put below to make sure, all the columns are loaded properly.
     
    <div>
    <div><div *ngIf=”columns.length>0; else loading;”></div>
    <div><divid=”gridContainer”></div>
    <div><smart-grid[dataSource]=”dataSource”[columns]=”columns”[sorting]=”sorting”</div>
    <div>[filtering]=”filtering”[behavior]=”behavior”[appearance]=”appearance”[onCommand]=”onCommand”#gridid=”grid”></smart-grid></div>
    <div></div></div>
    <div></div></div>
    <div><ng-template#loading>Loading data…</ng-template></div>
    </div>
     

    in reply to: Grid Dancing….. :) #101012
    admin
    Keymaster

    Hi GLMSDev,
    This basically means that a variable called “this.grid” is not defined in your code. You are probably trying to use it before the View is loaded.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Grid Dancing….. :) #101011
    admin
    Keymaster

    Thanks for the prompt reply. I tried now i am getting undefined error “<span style=”text-decoration: underline;”>ERROR TypeError: Cannot read property ‘beginUpdate’ of undefined</span>”
     

    in reply to: Grid Dancing….. :) #101009
    admin
    Keymaster

    Hi GLMSDev,
    Thanks for sharing the information.
    Running the sample I get:

    Error in /turbo_modules/@angular/compiler@7.0.0/bundles/compiler.umd.js (1098:21)
    Unexpected value 'undefined' declared by the module 'AppModule'

    For the performance part, I see that many properties are set dynamically. Please, not that when you need to set multiple properties at once, it is best to call grid.beginUpdate(); before setting the properties and after that use grid.endUpdate();. Otherwise, each setting triggers a new render cycle and instead of 1 render, it ends up with N Renders, where N is the number of property settings.
    Unfortunately, using the provided sample code I was not able to reproduce the described “dancing” behavior on expand/collapse. It could be somehow related to the applied templates to the columns, but as i am unable to run the sample, I cannot test this scenario.
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Gantt Chart + Horizontal Scroll #101007
    admin
    Keymaster

    My problem is not Gantt bar showing improperly, that works alright. My issue is left side of the Gantt.Where i have multiple columns which does not show i can only see 3-4 column max.
    Below is the code for gantt…
    <div>

    <div><div*ngIf=”taskColumns.length>0; else loading;”></div>
    <div><smart-gantt-chart#ganttChart[view]=”view”[dataSource]=”dataSource”[taskColumns]=”taskColumns”></smart-gantt-chart></div>
    <div></div></div>
    <div><ng-template#loading>Loading data…</ng-template></div>

    </div>
    <div>
    <div>

    <div>constructor(private http:HttpClient) { }</div>
    <div>dataSource1: Array<object>;</div>
    <div>dataSource: Array<object>;</div>
    <div>taskColumns:GanttChartTaskColumn[]=[];</div>
    <div>items=[];</div>
    <div>headerTemplate = ‘headerTemplate’;</div>
    <div>view = ‘month’;</div>
    <div>durationUnit = ‘day’;</div>
    <div>treeMin = 300;</div>
    <div>hideTimelineHeaderDetails = true;</div>

    </div>
    </div>

    in reply to: Grid Dancing….. :) #101006
    admin
    Keymaster

    https://stackblitz.com/edit/github-gfie78?file=src%2Fapp%2Fapp.component.ts does this works ?
    My data is coming from APIs so….

    in reply to: Grid Dancing….. :) #101002
    admin
    Keymaster

    Hi GLMSDev,
    Thanks for writing and for trying our products.
    Could you please create a Stackblitz sample, which we will be able to test and debug? The posted code unfortunately is not very readable and we would not be able to test using it. A Stackblitz template from which you can start is: https://stackblitz.com/github/htmlelements/smart-webcomponents-angular/tree/master/grid/overview
    Best regards,
    Peter Stoev
    Smart UI Team
    https://www.htmlelements.com/

    in reply to: Grid Dancing….. :) #101000
    admin
    Keymaster


     

    in reply to: Unable to load data into grid. #100997
    admin
    Keymaster

    Hi Hristofor, thank you so much for your reply.
    I checked my package.json and I already have smart-webcomponents-react@7.7.2 installed.
    I didn’t manage to get the CSS imported as shown in this example as it causes loader error.
    AppPage is a common layout.

    
    ...
    const AppPage = ({
      children, screen, notReady, routeParams,
    }) => (
      <div className="app-page-container">
        <UserSessionModal />
        <LoadingBar className="loading-bar fixed-top" />
        <AppBar />
        <div className="app-page-body">
          <Sidebar screen={screen} routeParams={routeParams} />
          <div className="app-page-content">{ notReady || children }</div>
        </div>
        <div className="app-page-footer">
          <AppFooter />
        </div>
        <ModuleTracker screen={screen} />
      </div>
    );
    export default AppPage;
    

    This is my App.jsx:

    
    ...
    const App = () => (
      <Provider store={Store}>
        <ErrorGlobalPage>
          <ThemeProvider />
          <PersistGate
            persistor={reduxPersistor}
          >
            <Localization>
              <ToastContainer
                hideProgressBar
                position="bottom-right"
                draggable={false}
              />
              <Socket />
              <Routes />
            </Localization>
          </PersistGate>
        </ErrorGlobalPage>
      </Provider>
    );
    export default App;
    

    This is my index.jsx

    
    ...
    ReactDOM.render(
      <App />,
      document.getElementById('root'),
    );
    
Viewing 15 posts - 601 through 615 (of 918 total)