Questions tagged [dinamico]

Dinamico is a template pack for N2 CMS that uses MVC4/Razor.

Dinamico is a template pack for N2 CMS that uses MVC4/Razor. These are immediately usable templates built upon the N2 CMS framework.

13 questions
1
vote
1 answer

Create cards dynamically in WordPress after submitting a specific form

I need to create a page for my collaborators which will be divided by region in which they operate and by profession. I would like to create a form that they will fill out themselves and after sending it, personal cards will be generated in the…
1
vote
2 answers

Android -Dynamic TextView over previous TextView

I am making an example of dynamic textview, that are created by pressing a button. the format in which they are created is similar to: 1- Textview (fist created) 2- TextView 3- TextView (last created) I wonder if we can create them in an ascending…
Loreln
  • 201
  • 3
  • 14
1
vote
2 answers

Jquery Mobile is repeating content dynamically created

I'm creating a Jquery Mobile page and I want to repeat its header in all pages. So I decided to do it via Jquery, where you can see below. a) this is the header content: var header_content = '' + '
acg
  • 503
  • 3
  • 11
  • 27
1
vote
1 answer

TinyMCE editor not showing in N2 CMS

I created a new MVC4 project and added N2 and Dinamico from Nuget. Was working well until I noticed that the tinyMCE editor wasn't showing on text boxes, so I added tinyMCE from Nuget too, and it still wasn't showing. In the Firebug Console, there…
harriyott
  • 10,505
  • 10
  • 64
  • 103
0
votes
1 answer

Insert buttons dynamically in angular 13

I have a parent component that sends an object via input to the child, but this object has a field with the title and another field that is a button containing an array. when I do it the way below, the title appears as many times as it exists, so…
0
votes
0 answers

Problem trying to make a function dinamic, it doesnt read me the function Parameter

I'll post first the original code, wich is pretty hard coded and has a bunch of lines. So the idea is a Score tracker for a game, so you just write in the input the new points, and click Rest or add depending of the score of every round and it will…
joaquin
  • 1
  • 1
0
votes
2 answers

How to create dynamic cursor in PLSQL - Oracle

I cannot create this cursor dynamically, I only have to modify the name of the table in the statement. But it returns me error. What am I doing wrong or what am I missing to create the dynamic cursor? The dynamic statement is in the Lv_SQL variable…
0
votes
0 answers

How to create angular dynamic component based on input parameters

I'm creating a component for typography, and I'd like to have different variants of typography classes and the way I create that component: Component definition example hello…
0
votes
2 answers

Vue props is undefined when print component dynamically

My problem is on the dynamically creation of the TAG "galeriaimages". Vue works fine but the props are always undefined thanks for all. main.js import Vue from 'vue' import Gi from './components/galeriaimages.vue' import vuetify from…
0
votes
1 answer

N2CMS Issues creating template first parts

What is the proper way of adding template first part as shown here..https://n2cmsdocs.atlassian.net/wiki/plugins/servlet/mobile#content/view/524349 I have done the same thing in my mvc project and the part appear in the drag drop list with the name…
eadam
  • 23,151
  • 18
  • 48
  • 71
0
votes
1 answer

Css/JS issues with N2CMS 2.5.9 and Dinamico templates

I sometimes have problems loading java script and CSS, and i think that Url.ThemedContent is the culprit. Everything will work perfect, but if I refresh my page multiple times fast (CTRL + R in chrome) to clear my js-cache, for some reason it just…
Jonathan Andersson
  • 1,057
  • 1
  • 10
  • 19
-2
votes
1 answer

How to make dynamic creation of various charts at the same page?

I need to create a screen (web application) that will be arranged around 30 small graphs, each with two series of data; These graphs need to be dynamically updated once every minute with data coming from the database. What would be the best approach…
Jovani
  • 127
  • 4
-2
votes
1 answer

Dynamically add a nested T class and fill it with another T class (GetProperty, GetType, SetValue)

I just want to pass a class T as a parameter. Example: from: SetValue (Car.parts, "engine"); to: SetValue (T.partes, "engine"); simply pass your nested class of a generic as a parameter. Thank you very much for the help. HERE THE DETAILED. but I…