Posts by STR21 • 19 points
3 posts
-
0
votes0
answers21
viewsQ: Doubt about setting size for table fields!
Hello! Follow the following code: create table Pessoa ( codigo_pessoa int not null primary key, nome nvarchar(50) not null, data_nascimento date not null, cpf int(11) not null ) In the field of Cpf,…
sql-serverasked STR21 19 -
0
votes1
answer37
viewsQ: Problem with length!
Hello! I am trying to implement, validation in some fields using knockoujs with the following code: <script type = "text/javascript"> function MyViewModel() { self = this; var registro;…
knockoutjsasked STR21 19 -
0
votes1
answer59
viewsQ: Knockoutjs: How to show "sum" of values in an input?
Hello! Follows code: window.onload = function () { var viewModel = function () { var self = this; self.label1 = "Label 1: "; self.label2 = "Label 2: "; self.show = ""; self.input1 = ko.observable();…
knockoutjsasked STR21 19